home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 012 / lockit.arc / LOCK.DOC next >
Text File  |  1985-11-06  |  2KB  |  66 lines

  1. The program LOCKERUP.EXE is designed for those offices like
  2. mine where too many people have access to my PC when I'm
  3. not sitting in front of it.
  4.  
  5. To use this program just type LOCKERUP at the DOS prompt.  It is
  6. recommended that you include this program in your AUTOEXEC.BAT
  7. file under another name like TIMER, or something else that will
  8. not give a tip-off that you are locking up your keyboard.  As
  9. soon as you run this DOS resident program, your keyboard will
  10. lock up until you depress the "Alt key", the "Left-shift key"
  11. and the letter "U" or "u" (which stands for unlock).  To lock up
  12. the keyboard, depress the "Alt key", the "Left-shift key" and the
  13. letter "L" or "l" (which stands for lock).
  14.  
  15. This three key combination can be changed by using DEBUG in the
  16. following manner:
  17.  
  18. (1) COPY  lockerup.exe  junk
  19. (2) DEBUG  junk
  20.     the bytes at location
  21.      303 equals 26 which is the scan code for the letter "L" or "l"
  22.      304 equals 16 which is the scan code for the letter "U" or "u"
  23.      305 equals 0A which is the bit map within KB_FLAG
  24.                  :...................
  25.                                     :
  26.                 RIGHT_SHIFT = 01H   :
  27.                 LEFT_SHIFT  = 02H...:
  28.                 CTL_SHIFT   = 04H   :
  29.                 ALT_SHIFT   = 08H...:
  30.  
  31. Example :
  32.  
  33. the following debug commands will change the program so that
  34. it is necessary to use the letter "S" or "s" to lock the keyboard
  35. and the letter "G" or "g" to unlock the keyboard in conjunction with
  36. the "Ctrl key", and the "Alt key"
  37.  
  38. (3) -e303 1F 22 0C
  39. (4) -w
  40. (5) -q
  41.  
  42.  
  43. Any question concerning this DOS resident utility should be directed
  44. to :
  45.        Warren E. Fuller
  46.        1211 HolmeWood Dr.
  47.        Pasadena, Md. 21122
  48.  
  49. You can also leave me a message on the following Bulletin Boards:
  50.  
  51. BBS Name        Phone Nr.              SysOp
  52. --------        ---------              -----
  53. BHEC         (301) 661-2175        Hampton Childress
  54. Capital      (301) 956-3396        Andy Smith
  55. Chesapeake   (301) 267-4930        Vince Castelli
  56. GoodNite     (301) 655-3996        Kyle Goodnight
  57. OnLine       (301) 484-2831        John Madill
  58. USF&G        (301) 578-4635        David Sieminski
  59. XTurbo1      (301) 256-8012        Stephan Hendricks
  60. XTurbo2      (301) 252-0717        Tom Hendricks
  61.  
  62. qed//WEF
  63.  
  64.  
  65.  
  66.